iT邦幫忙

2023 iThome 鐵人賽

DAY 3
0

寫好爬ptt油價漲跌的爬蟲後,接下來要來處理將訊息透過line發送的這個部分
首先,先查詢使用line notify api的方式:
https://ithelp.ithome.com.tw/upload/images/20230913/20163056ZOzuLW5HIy.png

接著,點帳號下拉選單到個人頁面後,拉到最下方並點擊"LINE Notify API Document"的按鈕
https://ithelp.ithome.com.tw/upload/images/20230913/20163056y2oaTanDjl.png

進到文件頁面後,查看發送訊息的api為: [POST] notify-api.line.me/api/notify
request的header需要access token,採bearer token,而要求的參數只有message為必填
https://ithelp.ithome.com.tw/upload/images/20230913/20163056LU3NRG4WeF.png

https://ithelp.ithome.com.tw/articles/10282029

承上,因為需要access token,所以點上一頁>發行權杖來取得access token
輸入名稱及選擇聊天室,點發行後複製權杖

https://ithelp.ithome.com.tw/upload/images/20230913/20163056vjOubT39d6.png
https://ithelp.ithome.com.tw/upload/images/20230913/20163056U6XiqwxlEA.jpg

先使用postman測試看看回傳狀態是否為成功
在Authorization的頁籤,type選擇"Bearer Token"
https://ithelp.ithome.com.tw/upload/images/20230913/201630569352uvNLhE.png

https://ithelp.ithome.com.tw/upload/images/20230913/20163056xJaUNnBkwk.png

發送成功後的樣子長這樣:
https://ithelp.ithome.com.tw/upload/images/20230913/20163056OFvzWlBUCF.jpg

最後~接著來寫code囉~

import urllib.parse
import requests
import bs4

query = urllib.parse.quote_plus('油價格')
# print(query)
url=f'https://www.ptt.cc/bbs/Lifeismoney/search?q={query}'
def get_data(url:str):
    """
    去ptt省錢版get資料來源
    """
    res=requests.get(url,headers={
        'User-Agent':'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36'
    })
    # print(res.text)
    soup=bs4.BeautifulSoup(res.text,'html.parser')
    title=soup.select('.title a')[2].text
    # print(title)
    return title[5:]

get_data(url)
data=f'{get_data(url)}\n'+' '*13+'中油小幫手~關心您\n'+' '*25+'ξ( ✿>◡❛)~♥'
# print(data)


def postToLine(token:str,data:str):
    """
    串接line notify api將組好的訊息post到line中
    """
    headers={
        "Authorization":"Bearer "+token,
        "Content-Type":"application/x-www-form-urlencoded"
    }
    payload={'message':data}
    url="https://notify-api.line.me/api/notify"
    
    #Post封包給LINE notify
    resp=requests.post(
        url=url,
        headers = headers,
        params = payload
    )
    print(f'res status:{resp.status_code}')
    print(type(resp))
    return resp
    
token="<你自己的權杖>"
resp=postToLine(token,data)
print(resp.text)

上一篇
爬油價漲跌的爬蟲
下一篇
gitHub actions yaml檔設定說明-1
系列文
定期推送油價通知到Line上的訊息通知,並使用GitLab CI排程搭配Google Colab16
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言